home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1997 / HAM Radio 1997.iso / vcls / multlang.000 / example / mobjsize.pas < prev    next >
Pascal/Delphi Source File  |  1996-04-08  |  644b  |  36 lines

  1. unit Mobjsize;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, StdCtrls, Mcombbox, MultLang;
  8.  
  9. type
  10.   TObjSize = class(TForm)
  11.     Label1: TLabel;
  12.     MultLang1: TMultLang;
  13.     Edit1: TEdit;
  14.     Button1: TButton;
  15.     MultLang2: TMultLang;
  16.     procedure FormClose(Sender: TObject; var Action: TCloseAction);
  17.   private
  18.     { Private declarations }
  19.   public
  20.     { Public declarations }
  21.   end;
  22.  
  23. var
  24.   ObjSize: TObjSize;
  25.  
  26. implementation
  27.  
  28. {$R *.DFM}
  29.  
  30. procedure TObjSize.FormClose(Sender: TObject; var Action: TCloseAction);
  31. begin
  32.   Action:=caFree;
  33. end;
  34.  
  35. end.
  36.